@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900;1000&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');

:root {
  /* ----------------------------- Colours Declaration----------------------------------------------------- */
  --bg-color: #fefefe;
  --primary-color: #232323;
  --span-font-color: #0be26c;
  --special-bg-color: #03045e;
  --sky-blue: #00b4d8;
  --pure-white: #fff;
  --pure-black: #000;
  --yellow-color: #ffff3f;
  --gray-1: #343a40;
  --gray-2: #495057;
  --gray-3: #6c757d;
  --gray-4: #adb5bd;
  --gray-5: #ced4da;
  --gray-6: #dee2e6;
  --gray-7: #e5e5e5;
  --gray-8: #e9ecef;
  --gray-8a: #e9ecef56;
  --gray-9: #f8f9fa;
  /* ----------------------------- Fonts Declaration----------------------------------------------------- */
  --primary-font-sourse-sans-3: "Source Sans 3", sans-serif;
  --primary-font-extra-outfit: "Outfit", sans-serif;
  --paragraph-font-nunito: "Nunito", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  scroll-behavior: smooth;
}
/* ------------------------------------------Header----------------- */
.top-bottom-nav-bar1{
  display: none;
}
.top-bottom-nav11{
  display: none;
}
.top-bottom-nav11-container{
  display: none;
}
.hamburger{
  display: none;
}
header {
  position: fixed;
  width: 100%;
  top: -100%;
  /* top: 0; */
  padding: 20px 0 0 0;
  background: var(--bg-color);
  font-family: var(--primary-font-sourse-sans-3);
  z-index: 9999;
  transition: 0.5s ease;
}
.header-toggle {
  top: 0;
}
.header-logo {
  width: 35%;
}
.header-logo img {
  /* background-color: var(--special-bg-color); */
  width: 90%;
  height: auto;
  margin-top: -10px;
}
.header-logo-top-nav {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
}
.top-nav {
  display: flex;
  justify-content: end;
}
.top-nav-list li {
  list-style: none;
  margin-right: 30px;
}
.top-nav-list li a {
  font-family: var(--primary-font-sourse-sans-3);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  color: var(--special-bg-color);
  padding: 0 0 10px 0;
}
.top-nav-list li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #0200f2;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.45s ease;
}
.top-nav-list li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.top-nav-list,
.bottom-nav-list {
  display: flex;
}
.bottom-nav-list {
  width: 100%;
  background-color: var(--special-bg-color);
  color: var(--bg-color);
  box-shadow: 0 3px 6px 0 var(--bg-color);
  padding: 10px 0;
  /* overflow-y: scroll; */
}
.bottom-nav-list li,
.bottom-nav-list li a {
  font-family: var(--primary-font-sourse-sans-3);
  text-decoration: none;
  font-weight: 600;
  /* margin-left: 10px; */
  font-size: 16px;
}
.bottom-nav-list li a {
  color: var(--bg-color);
}

nav {
  display: flex;
  justify-content: center;
}
.bottom-nav-list {
  justify-content: center;
  width: 100%;
}
.dropdown {
  /* background-color: var(--special-bg-color); */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 13px;
  /* overflow-y: scroll; */
}
.dropdown a {
  text-decoration: none;
  transition: 0.3s ease;
}
.dropdown a:hover{
  color: var(--yellow-color);
}
.dropdown i {
  transition: 0.3s ease;
}
.dropdown:hover {
  cursor: pointer;
  color: var(--yellow-color);
}
.dropdown:hover > i {
  transform: rotate(180deg);
}
.dropdown:hover > .dropdown-menu > li {
  display: block;
}
.dropdown:hover > .dropdown-menu > li:first-child {
  border-top: 2px solid var(--span-font-color);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 13px;
  min-width: auto;
  /* height: 100px; */
  /* overflow-y: scroll; */
}

.dropdown-menu > li {
  box-shadow: 0 2px 3px 0 var(--special-bg-color);
  display: none;
  background-color: var(--bg-color);
  opacity: 0;
  font-weight: 500;
}
.dropdown-menu > li a {
  color: var(--special-bg-color);
  /* color: var(--bg-color); */
  text-decoration: none;
  white-space: nowrap;
  transition: 0.2s ease-in-out;
  padding: 0px 30px;
  /* margin: 25px 20px; */
  height: 40px;
  text-align: center;
  align-items: center;
  display: flex;
  /* display: inline-block; */
}
.dropdown-menu-big > li a {
  height: 37px;
}
.dropdown-menu > li:hover {
  background-color: var(--special-bg-color);
  border-left: 4px solid var(--span-font-color);
}
.dropdown-menu > li:hover > a {
  color: var(--bg-color);
}
.counselling-code-list{
  display: flex;
  cursor: default;
}
.counselling-code-list h3{
  font-size: 1rem;
}
.counselling-code-list i{
  padding: 0 5px;
  font-size: 2rem;
}

.dropdown-menu > .dropdown-item1 {
  transform-origin: top center;
  animation: rotateX 300ms 70ms ease-in-out forwards;
}
.dropdown-menu > .dropdown-item2 {
  transform-origin: top center;
  animation: rotateX 300ms 140ms ease-in-out forwards;
}
.dropdown-menu > .dropdown-item3 {
  transform-origin: top center;
  animation: rotateX 300ms 210ms ease-in-out forwards;
}
.dropdown-menu > .dropdown-item4 {
  transform-origin: top center;
  animation: rotateX 300ms 280ms ease-in-out forwards;
}
.dropdown-menu > .dropdown-item5 {
  transform-origin: top center;
  animation: rotateX 300ms 350ms ease-in-out forwards;
}
.dropdown-menu > .dropdown-item6 {
  transform-origin: top center;
  animation: rotateX 300ms 420ms ease-in-out forwards;
}
.dropdown-menu > .dropdown-item7 {
  transform-origin: top center;
  animation: rotateX 300ms 490ms ease-in-out forwards;
}
.dropdown-menu > .dropdown-item8 {
  transform-origin: top center;
  animation: rotateX 300ms 560ms ease-in-out forwards;
}
.dropdown-menu > .dropdown-item9 {
  transform-origin: top center;
  animation: rotateX 300ms 630ms ease-in-out forwards;
}
.dropdown-menu > .dropdown-item10 {
  transform-origin: top center;
  animation: rotateX 300ms 700ms ease-in-out forwards;
}
.dropdown-menu > .dropdown-item11 {
  transform-origin: top center;
  animation: rotateX 300ms 770ms ease-in-out forwards;
}
.dropdown-menu > .dropdown-item12 {
  transform-origin: top center;
  animation: rotateX 300ms 840ms ease-in-out forwards;
}
.dropdown-menu > .dropdown-item13 {
  transform-origin: top center;
  animation: rotateX 300ms 910ms ease-in-out forwards;
}
.dropdown-menu > .dropdown-item14 {
  transform-origin: top center;
  animation: rotateX 300ms 980ms ease-in-out forwards;
}
.dropdown-menu > .dropdown-item15 {
  transform-origin: top center;
  animation: rotateX 300ms 1050ms ease-in-out forwards;
}

.dropdown-menu-spl > .dropdown-item1 {
  transform-origin: top center;
  animation: Scale 300ms 70ms ease-in-out forwards;
}
.dropdown-menu-spl > .dropdown-item2 {
  transform-origin: top center;
  animation: Scale 300ms 140ms ease-in-out forwards;
}
.dropdown-menu-spl > .dropdown-item3 {
  transform-origin: top center;
  animation: Scale 300ms 210ms ease-in-out forwards;
}
.dropdown-menu-spl > .dropdown-item4 {
  transform-origin: top center;
  animation: Scale 300ms 280ms ease-in-out forwards;
}
.dropdown-menu-spl > .dropdown-item5 {
  transform-origin: top center;
  animation: Scale 300ms 350ms ease-in-out forwards;
}
.dropdown-menu-spl > .dropdown-item6 {
  transform-origin: top center;
  animation: Scale 300ms 420ms ease-in-out forwards;
}
.counselling{
  font-size: .8rem !important;
}
.counselling span{
  color: #ff0000;
  font-size: 1.1rem;
}

.first-page-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.first-page {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.bg-image {
  position: absolute;
  z-index: -1;
  overflow: hidden;
  width: 100%;
}
.bg-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  animation: pop 60s ease-in-out infinite;
  transform-origin: center center;
  filter: brightness(80%);
  transition: .4s ease-in-out;
}
.bg-image-show img{
  filter: brightness(40%);
  
}
.main-logo {
  width: 100%;
  display: flex;
  justify-content: center;
}
.main-logo img {
  width: 85%;
}

.first-page-text-container {
   font-family: 'Young Serif', serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
}
.first-page-text-container h1 {
  font-size: 2.1em;
  color: var(--bg-color);
  letter-spacing: 3px;
}
.first-page-text-container p {
  font-family: var(--primary-font-sourse-sans-3);
  color: var(--gray-5);
  font-size: 1em;
  margin-bottom: 20px;
}
.first-page-text-container a {
  text-decoration: none;
  /* color: color( red green blue); */
  /* background-color: var(--special-bg-color); */
  /* background-color: transparent; */
  font-family: var(--primary-font-sourse-sans-3);
  padding: 8px 30px 8px 15px;
  border-radius: 10px;
  position: relative;
  font-size: 1.1em;
  transition: 0.3s ease;
}
/* .first-page-text-container a:hover {
  background-color: #03055ed7;
} */
/* .first-page-text-container a:hover i {
  color: #3efe04;
} */
.first-page-text-container a i {
  position: absolute;
  font-size: 1.25em;
  top: 10px;
  right: 20px;
  animation: moveRight 1s linear infinite alternate;
  transform: translateX(0);
  transition: 0.3s ease;
}

.home-page-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: 60px;
}

.home-page-btn a.home-page-btn-a {
  font-family: var(--primary-font-sourse-sans-3);
  color: var(--primary-color);
  text-decoration: none;
  background-color: var(--bg-color);
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 10px;
  font-size: 1.1em;
  transition: transform 0.3s linear;
}
.home-page-btn a.home-page-btn-a:hover {
  transform: translateY(8px);
}

.counselling-code-container{
  width: fit-content;
  display: flex;
  position: absolute;
  right: 20px;
  bottom: 30px;
}
.counselling-code-container-logo i{
  font-size: 2.5rem;
  color: var(--bg-color);
  padding-right: 10px;
}
.counselling-code-container-text h3{
 font-family: var(--paragraph-font-nunito);
 color: var(--gray-5);
}
.counselling-code-container-text h3 span{
  font-family: var(--primary-font-sourse-sans-3);
  font-size: 1.3rem;
  color: #ff0000;
  font-weight: 800;
}

/* --------------------------------------------------Main Home Page ----------------------------------------------------------------------- */

main {
  background: var(--bg-color);
}

/* -------------------------------------------------------Carausole----------------------------------------------------------------------------- */
.carausole-container {
  width: 100%;
  background: var(--gray-8a);
  padding: 30px 0;
}
.swiper {
  width: 90%;
  height: 400px;
  margin-top: 4rem;
  overflow: hidden;
}

.swiper-slide img {
  object-fit:fill;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  color: #fff;
  opacity: 0.7;
  transition: 0.2s opacity;
  /* width: 10px; */
}
.swiper .swiper-button-prev:hover {
  opacity: 1;
}
.swiper .swiper-button-next:hover {
  opacity: 1;
}
.swiper .swiper-pagination-bullet{
  background-color: #fff;
  /* border: 10px solid transparent; */
  outline: 2px solid var(--special-bg-color);
  width: 8px;
  height: 8px;
  opacity: .8;
}
.swiper .swiper-pagination-bullet-active {
  background-color: var(--special-bg-color);
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  opacity: 1;
  transition: 0.2s opacity;
}
.swiper .swiper-pagination-bullet-active:hover {
  opacity: 1;
}
/* ---------------------------------------------------Notifications Box------------------------------------------------------ */
.show-button {
  background: #ff0000;
  width: fit-content;
  width: auto;
  padding: 10px;
  color: var(--bg-color);
  font-family: var(--primary-font-extra-outfit);
  border-radius: 15px;
  position: fixed;
  z-index: 10;
  right: -100%;
  top: 50%;
  cursor: pointer;
  transition: 0.5s linear;
}
.show-button h3 {
  letter-spacing: 3px;
}
.show-button h3 i {
  padding-right: 7px;
  font-size: 1.2rem;
  transition: 0.5s linear;
}
.show-button-show {
  right: 0;
}
.show-button-toggle {
  right: 400px;
}
.show-button-toggle i {
  transform: rotate(180deg);
  padding-left: 8px;
}

/* .news-box{
  width: 400px;
  height: 450px;
  background-color: green;
} */
.news-box {
  width: 400px;
  height: 400px;
  background: var(--special-bg-color);
  box-shadow: 0 3px 6px 0 var(--bg-color);
  color: #fff;
  overflow: hidden;
  position: fixed;
  z-index: 1000000;
  top: 30%;
  right: -120%;
  border-radius: 20px;
  transition: 0.7s linear;
}
.news-box h4 {
  background-color: red;
  text-align: center;
  padding: 10px;
  font-family: var(--paragraph-font-nunito);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1px;
  z-index: 100;
  position: relative;
}
.news-box-show {
  right: 0;
}

.news-box-content {
  /* position: absolute; */
  bottom: 0;
  height: 100%;
  /* width: 100%; */
  display: flex;
  flex-direction: column;
  animation: scrollUp 25s linear infinite;
  align-items: center;
  width: 100%;
  /* z-index: -1; */
}
.news-box-content-fast{
  animation:none;
}
.news-box-content a:hover {
  text-decoration: underline;
  text-decoration-color: var(--yellow-color);
  color: var(--yellow-color);
}
.news-box-content a:hover .news-box-content{
  animation: none;
}
.news-box-content a {
  text-decoration: none;
  color: var(--bg-color);
  font-family: var(--paragraph-font-nunito);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 15px 0;
  transition: 0.3s ease-in-out;
  border-bottom: 2px solid #ffffff6e;
}
.news-box-content a span {
  animation: colourChange 1s infinite;
}
@keyframes colourChange {
  0% {
    color: rgb(250, 19, 2);
  }
  40% {
    color: var(--span-font-color);
  }
  100% {
    color: var(--bg-color);
  }
}
@keyframes scrollUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
.scroll-to-top-btn{
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 5px;
  color: #fff;
  background-color: var(--special-bg-color);
  z-index: 2;
  visibility:hidden ;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.scroll-to-top-btn-show a{
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-to-top-btn-show{
  visibility: visible;
}
.scroll-to-top-btn a i {
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

/* ----------------------------------------------------Programs Offered----------------------------------------------- */
.programs-offered-heading {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px;
}
.programs-offered-heading h1 {
  font-family: var(--primary-font-sourse-sans-3);
  font-size: 3rem;
  color: var(--pure-black);
  letter-spacing: 2px;
  cursor: default;
}
.programs-offered-heading h1 span {
  color: var(--special-bg-color);
}
.branch-images-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 230px);
  place-content: center;
  grid-column-gap: 55px;
  margin-bottom: 100px;
}
.branch-images-container a img {
  height: 140px;
  width: 230px;
  border-radius: 10px;
  z-index: -1;
  position: relative;
}
.card {
  perspective: 1000px; /* Add perspective for 3D effect */
  width: 230px; /* Set the card width as needed */
  height: 140px; /* Set the card height as needed */
}

.card-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
}

.card-front {
  transform: rotateY(0deg);
}

.card-back {
  transform: rotateY(180deg);
  background-color: transparent;
  border: 1px solid var(--special-bg-color);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-back a {
  text-decoration: none;
  padding: 8px;
}
.card-back a p {
  font-family: var(--paragraph-font-nunito);
  color: var(--special-bg-color);
  font-weight: 600;
  font-size: 0.8rem;
}
.card-back a p span {
  font-weight: 800;
  font-size: 0.9rem;
}

.branch-images-container .card-front a {
  text-decoration: none;
  font-family: var(--primary-font-extra-outfit);
  font-weight: 700;
  font-size: 1.1em;
  width: 100%;
  transition: 0.3s;
}
.branch-images-container .card-front a figcaption {
  text-align: center;
  padding: 10px 0;
  color: var(--special-bg-color);
  width: 100%;
  margin: 0;
}

/* -----------------------------------------------------Our History---------------------------------------------------- */
.our-history-container {
  width: 100%;
  padding: 30px 75px;
}
.our-history-heading {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.our-history-heading h1 {
  color: var(--pure-black);
  font-family: var(--primary-font-sourse-sans-3);
  font-size: 2.7rem;
  letter-spacing: 2px;
}
.underline {
  width: 60%;
  height: 5px;
  background: #ff0000;
  border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  opacity: 0.8;
  margin-bottom: 20px;
}
.our-history-content {
  padding: 0 30px;
}
.our-history-content p {
  font-family: var(--paragraph-font-nunito);
  font-weight: 600;
  line-height: 27px;
  font-size: 1.2rem;
  text-align: justify;
}
.our-history-content p span {
  font-weight: 750;
  font-size: 1.3rem;
}
/* -----------------------------------------------------Our Vision--------------------------------------------------------- */
.our-vision-container {
  width: 100%;
  padding: 30px 75px;
}
.our-vision-heading {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.our-vision-heading h1 {
  color: var(--pure-black);
  font-family: var(--primary-font-sourse-sans-3);
  font-size: 2.7rem;
  letter-spacing: 2px;
}
.our-vision-container .our-vision-content {
  padding: 0 30px;
  text-align: justify;
}
.our-vision-container
  .our-vision-content
  ul.our-vision-content-list
  li.our-vision-content-list-item {
  list-style: none;
  font-family: var(--paragraph-font-nunito);
  font-weight: 600;
  line-height: 35px;
  font-size: 1.2rem;
}
.our-vision-container
  .our-vision-content
  ul.our-vision-content-list
  li.our-vision-content-list-item
  i {
  padding-right: 15px;
  color: var(--special-bg-color);
}
.our-vision-container
  .our-vision-content
  ul.our-vision-content-list
  li.our-vision-content-list-item
  span {
  font-weight: 700;
  font-size: 1.3rem;
}

/* --------------------------------------------------KeyFrames------------------------------------------------------------ */
@keyframes moveRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

@keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes rotateX {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(-20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes Scale {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------------------------------------------------CSS CODE FOR ANIMATING ARROWS IN HOME PAGE ------------------------------- */

.mouse-scroll {
  display: block;
  cursor: pointer;
}
.mouse-scroll {
  position: absolute;
  margin: auto;
  left: 50%;
  bottom: -55px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 90;
}
.mouse-scroll span {
  display: block;
  width: 14px;
  height: 14px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 3px solid var(--gray-5);
  border-bottom: 3px solid var(--gray-5);
  margin: 0 0 3px 5px;
}
.mouse-scroll .mouse {
  height: 21px;
  width: 14px;
  border-radius: 10px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  border: 2px solid #ffffff;
  top: 170px;
}
.mouse-scroll .down-arrow-1 {
  margin-top: 6px;
}
.mouse-scroll .down-arrow-1,
.mouse-scroll .down-arrow-2,
.mouse-scroll .down-arrow-3 {
  -webkit-animation: mouse-scroll 1s infinite;
  -moz-animation: mouse-scroll 1s infinite;
  animation: mouse-scroll 1s infinite;
}
.mouse-scroll .down-arrow-1 {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  animation-delay: 0.1s;
}
.mouse-scroll .down-arrow-2 {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  animation-delay: 0.2s;
}
.mouse-scroll .down-arrow-3 {
  -webkit-animation-delay: 0.3s;
  -moz-animation-dekay: 0.3s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  animation-delay: 0.3s;
}
.mouse-scroll .mouse-in {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: #ffffff;
  position: relative;
}
.mouse-scroll .mouse-in {
  -webkit-animation: animated-mouse 1.2s ease infinite;
  -moz-animation: mouse-animated 1.2s ease infinite;
  animation: mouse-animated 1.2s ease infinite;
}
.mouse-scroll-hidden {
  display: none;
}

@-webkit-keyframes animated-mouse {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@keyframes animated-mouse {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
